home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Mac / Compat / rmdir.c < prev    next >
Text File  |  1995-01-18  |  387b  |  21 lines

  1. /* Rmdir for the Macintosh.
  2.    Public domain by Guido van Rossum, CWI, Amsterdam (July 1987).
  3.    Pathnames must be Macintosh paths, with colons as separators. */
  4.  
  5. #include "macdefs.h"
  6.  
  7. int
  8. rmdir(path)
  9.     char *path;
  10. {
  11.     IOParam pb;
  12.     
  13.     pb.ioNamePtr= (StringPtr) Pstring(path);
  14.     pb.ioVRefNum= 0;
  15.     if (PBDelete((ParmBlkPtr)&pb, FALSE) != noErr) {
  16.         errno= EACCES;
  17.         return -1;
  18.     }
  19.     return 0;
  20. }
  21.